home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
program
/
pdmake.arc
/
ASTAT.H
next >
Wrap
C/C++ Source or Header
|
1986-12-14
|
534b
|
20 lines
/************************************************\
* *
* astat.h - Retrofit <sys/stat.h> *
* for the Atari ST machines *
* *
* J.R. Bammi *
* *
\************************************************/
#define time_t long
struct stat
{
char st_sp1[21]; /* Junk */
char st_mode; /* File attributes */
time_t st_mod; /* Mod time, we use the date & time as 1 long */
long st_size; /* File size */
char st_sp2[14]; /* File name */
};